home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Network CD 2
/
Network CD - Volume 2.iso
/
programs
/
internet
/
dnet
/
dnet2.10.13.lha
/
DNet
/
Amiga
/
Sourcen.lha
/
lib
/
dnaaccept.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-14
|
357 b
|
22 lines
/*
* DNAAccept.C
*/
#include "lib.h"
int
DNAAccept(lisport)
PORT *lisport;
{
IOSTD *ior;
if (ior = (IOSTD *)GetMsg(lisport)) {
ior->io_Error = 1;
ReplyMsg((MSG *)ior);
}
if (lisport->mp_MsgList.lh_Head != (NODE *)&lisport->mp_MsgList.lh_Tail)
SetSignal(1 << lisport->mp_SigBit, 1 << lisport->mp_SigBit);
return(ior != NULL);
}